home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / a_utils / perl / msds-prl / ptchds19.zoo / doio_c < prev    next >
Text File  |  1992-02-23  |  1KB  |  44 lines

  1. MS-DOS patches to perl.
  2. Apply this patch to the standard perl source, version 4, patch level 19,
  3. using "patch -p."  Do this in the root directory of the perl source
  4. distribution.
  5.  
  6. You can cat all these patches together and pipe the output to patch -p.
  7.  
  8. Len Reed
  9. Holos Software, Inc.
  10. ..!gatech!holos0!lbr
  11. holos0!lbr@gatech.edu
  12. --------------------------------------
  13. *** doio.c.old    Mon Nov 11 09:31:22 1991
  14. --- doio.c    Thu Nov 14 08:52:16 1991
  15. ***************
  16. *** 80,85 ****
  17. --- 80,87 ----
  18.   #include <sys/file.h>
  19.   #endif
  20.   
  21. + #include <math.h>
  22.   int laststatval = -1;
  23.   int laststype = O_STAT;
  24.   
  25. ***************
  26. *** 1259,1264 ****
  27. --- 1261,1275 ----
  28.       register char **a;
  29.       register char *s;
  30.       char flags[10];
  31. + #ifdef MSDOS
  32. +     /* Close the temp files in anticipation that the exec
  33. +        will succeed.  If it fails, we're screwed.  (MS-DOS
  34. +        exec handling needs a lot of work.  The ambitious
  35. +        should refer to the way system and pipes work.
  36. +     */
  37. +     cleanup_msdos_temps();
  38. + #endif
  39.   
  40.       /* save an extra exec if possible */
  41.   
  42.